home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / strcat.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  35 lines

  1.  
  2. STRCAT(3)                  UNIX Programmer's Manual                  STRCAT(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrccaatt - concatenate strings
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      ssttrrccaatt(_c_h_a_r _*_s, _c_o_n_s_t _c_h_a_r _*_a_p_p_e_n_d)
  12.  
  13.      _c_h_a_r _*
  14.      ssttrrnnccaatt(_c_h_a_r _*_s, _c_o_n_s_t _c_h_a_r _*_a_p_p_e_n_d, _s_i_z_e___t _c_o_u_n_t)
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The ssttrrccaatt() and ssttrrnnccaatt() functions append a copy of the null-terminated
  18.      string _a_p_p_e_n_d to the end of the null-terminated string _s, then add a ter-
  19.      minating `\0'. The string _s must have sufficient space to hold the re-
  20.      sult.
  21.  
  22.      The ssttrrnnccaatt() function appends not more than _c_o_u_n_t characters.
  23.  
  24. RREETTUURRNN VVAALLUUEESS
  25.      The ssttrrccaatt() and ssttrrnnccaatt() functions return the pointer _s.
  26.  
  27. SSEEEE AALLSSOO
  28.      bcopy(3),  memccpy(3),  memcpy(3),  memmove(3),  strcpy(3)
  29.  
  30. SSTTAANNDDAARRDDSS
  31.      The ssttrrccaatt() and ssttrrnnccaatt() functions conform to ANSI C3.159-1989 (``ANSI
  32.      C'').
  33.  
  34. BSD Experimental                 June 29, 1991                               1
  35.